home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / Frame.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.2 KB  |  52 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: Frame.h,v $ $Revision: 1.17 $ $Date: 92/05/14 12:52:01 $ */
  6. /*
  7. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  8. #ifndef _XmFrame_h
  9. #define _XmFrame_h
  10.  
  11. #include <Xm/Xm.h>
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. #ifndef XmIsFrame
  18. #define XmIsFrame(w) XtIsSubclass(w, xmFrameWidgetClass)
  19. #endif /* XmIsFrame */
  20.  
  21. /* Class record constants */
  22.  
  23. externalref WidgetClass xmFrameWidgetClass;
  24.  
  25. typedef struct _XmFrameClassRec * XmFrameWidgetClass;
  26. typedef struct _XmFrameRec      * XmFrameWidget;
  27.  
  28.  
  29. /********    Public Function Declarations    ********/
  30. #ifdef _NO_PROTO
  31.  
  32. extern Widget XmCreateFrame() ;
  33.  
  34. #else
  35.  
  36. extern Widget XmCreateFrame( 
  37.                         Widget parent,
  38.                         char *name,
  39.                         ArgList arglist,
  40.                         Cardinal argcount) ;
  41.  
  42. #endif /* _NO_PROTO */
  43. /********    End Public Function Declarations    ********/
  44.  
  45.  
  46. #ifdef __cplusplus
  47. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  48. #endif
  49.  
  50. #endif /* _XmFrame_h */
  51. /* DON'T ADD ANYTHING AFTER THIS #endif */
  52.